home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Visual Basic Source Code
/
Visual Basic Source Code.iso
/
vbsource
/
cenvid
/
wait.bat
< prev
next >
Wrap
DOS Batch File
|
1994-10-05
|
810b
|
16 lines
@echo OFF
REM **************************************************************************
REM *** Wait.bat - Wait for a specified number of seconds before returing. ***
REM *** ver.1 No check is done on the input being valid. ***
REM *** This example would wait ten seconds: " Wait 10" ***
REM **************************************************************************
CEnviD " start=time(); while( difftime(time(),start) < %1 ) ; "
REM ********************************************************************
REM *** The following method would have been an easier way to wait ***
REM *** the same amount of time, but it wouldn't have been such fun. ***
REM ********************************************************************
REM CEnviD suspend(%1 * 1000)